home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 8_scripts / history < prev    next >
Encoding:
Text File  |  2001-03-21  |  943 b   |  28 lines

  1. Synopsis:
  2.    load history
  3.  
  4. Description:
  5.    This clever script allows for special escape sequence to be used inside
  6.    the current input line.  The sequences refer to the previous line
  7.    entered on the input line.  The binding ^k-h may be used to toggle the
  8.    history function on and off.
  9.  
  10.      Escape         Description                                           
  11.      !$             expands to the last word in the previous line
  12.      !0 !1 ... !9   expand to the first ten words in the last line entered
  13.      !*             expands to all but the first word in the previous line
  14.  
  15. Examples:
  16.    To ban an abusive user from several channels:
  17.       /mode #channel1 +b *!*jerk@*.lusers.com
  18.       /mode #channel2 +b !$
  19.       !0 #channel3 !2 !3
  20.  
  21. See Also:
  22.    history(4); load(5)
  23.  
  24. Other Notes:
  25.    This script was written by Matthew Green (phone), mrg@mame.mu.oz.au, and
  26.    Ian Frechette (Daemon), frechett@spot.colorado.edu.
  27.  
  28.